home *** CD-ROM | disk | FTP | other *** search
/ UnrealScript Game Programming All in One / UnrealScriptGameProgrammingAllInOne.iso / UGPAIOListings / UGPAIOListingsCh05 / HelloWorld / Classes / HelloWorldTwo (2).uc < prev    next >
Encoding:
Text File  |  2005-12-08  |  179 b   |  12 lines

  1. class HelloWorldTwo extends Commandlet;
  2.  
  3. function int Main(string Args)
  4. {
  5.   log("*************");
  6.   
  7.   log("Hello World Two!");
  8.   log("*************");
  9.  
  10.   return 0;
  11. }
  12.